home *** CD-ROM | disk | FTP | other *** search
- name Citizen F10 Screw machine
-
- O >4
- N >3
- G >2
- X ->3.>4
- Z ->3.>4
- D >2
- I ->3.>4
- K ->3.>4
- U ->3.>4
- W ->3.>4
- P ->3.>4
- Q ->3.>4
- R ->3.>4
- F >3.>5
- T >2
- S >2
- M >2
-
- ModalGs 0 1 2 3 4 # List of g codes that are modal
-
- Sequence#s N 1 10 10 # Char, freq, incr & start
- First#? N # Y or N 'Output 1st sequence no.
-
- Comment ( ) # Begin End comment char.
-
- HCode Z # X or X U 'Horizontal char.
- VCode X # Y or Y V 'Vertical char.
- FeedCode F # Feed rate char.
-
- Spindle 3 4 5 # Cw, ccw & stop m codes
- Coolant 52 53 52 # On, Off & Mist m codes
- SpeedType G 97 96 # CSS and RPM g codes
- FeedType G 95 94 # IPR & IPM g codes
-
- ByDiameter? Y # Y or N 'Output X val. by diameter
-
- RevSigns Z K # List of letters to reverse signs
-
- CtrIncremental? Y # Y or N 'Inc or abs I & J
- ByQuadrants? N # Y or N 'Break arcs at quadrants
-
- Inc/Abs G 91 90 # Inc & Abs char. & values
-
- Inch/MM 20 21 # Inch & Metric g codes
-
- CtrCode K I # I J or R or I J K L
-
- Feed G1 # Linear move
- Rapid G0 # Rapid positioning word
- Cw G2 # Circular move clockwise
- Ccw G3 # Circular move counter clockwise
-
- UppercaseComments? Y # Y or N 'Require uppercase comments
-
-
- Peck # Pecking canned/manual cycle
- none
- end
-
- Tap # Tapping canned/manual cycle
- G84 Z[H] F[FRate]
- end
-
- Ream # Reaming canned/manual cycle
- G85 Z[H] F[FRate]
- end
-
- AutoThread # Automatic thread canned cycle
- G33
- End
-
- Bore # Boring canned/manual cycle
- G74 R0
- G74 Z[H] R[SClear] F[FRate]
- end
-
- Cancel # Cancel a canned/manual cycle
- G80
- end
-
- StartCode # Start of the program
- O[Program#]
- G0 G[Unitmode] G99 M6
- G69
- G50 X[-.06] Z0
- End
-
- 1stToolChange # First tool change
- G[FeedType] G[SpeedType] M[Direct] S[Speed]
- G0 Z[SClear]
- T[Tool]
- G68
- M[Cool]
- G0 X[V] Z[SClear]
- T[Comp]
- End
-
- Infeed # Enable cutter comp
- G1 X[V] Z[H] D[Dcomp] F[FRate]
- end
-
- Outfeed # Disable cutter comp
- G1 X[V] Z[H]
- end
- Drill # Drilling canned/manual cycle
- G0 X[-1]
- G1 Z[H] U0 F[FRate]
- G0 Z[SClear] T0
- end
-
- ToolChange # Secondary tool changes
- T0
- T[Tool]
- G[FeedType] G[SpeedType] M[Direct] S[Speed]
- M[Cool]
- G0 Z[SClear]
- G68
- T[Comp]
- End
-
- EndCode # End of the program
- M7
- G0 X[-.06] Z0 T0
- M2
- End
-